home *** CD-ROM | disk | FTP | other *** search
/ ftp.cs.arizona.edu / ftp.cs.arizona.edu.tar / ftp.cs.arizona.edu / icon / newsgrp / group02b.txt / 000018_icon-group-sender_Mon Aug 19 13:10:13 2002.msg < prev    next >
Internet Message Format  |  2003-01-02  |  3KB

  1. Return-Path: <icon-group-sender>
  2. Received: (from root@localhost)
  3.     by baskerville.CS.Arizona.EDU (8.11.1/8.11.1) id g7JKAAU14517
  4.     for icon-group-addresses; Mon, 19 Aug 2002 13:10:10 -0700 (MST)
  5. Message-Id: <200208192010.g7JKAAU14517@baskerville.CS.Arizona.EDU>
  6. Date: Mon, 19 Aug 2002 14:16:57 +1200 (NZST)
  7. From: "Richard A. O'Keefe" <ok@cs.otago.ac.nz>
  8. To: cbbrowne@acm.org, icon-group@cs.arizona.edu
  9. Subject: Re: What about "Expressions?" (was Re: Icon Wish List)
  10. Errors-To: icon-group-errors@cs.arizona.edu
  11. Status: RO
  12.  
  13. There is a category of sentences called "Garden Path" sentences because
  14. they lead the hearer down the garden path (you expect one structure,
  15. but it has another).  Mitch Marcus was particularly interested in them
  16. because they also misled his parser, for which he claimed "psychological
  17. realism".  One idea is that people may have (at least) two strategies for
  18. dealing with language: a fast heuristic parser that normally gets it right,
  19. and a slow, more-or-less conscious rule-following process that can cope with
  20. gubbins like "Buffalo buffalo buffalo Buffalo buffalo."
  21.  
  22.     >> The horse raced past the barn collapsed.
  23.  
  24. This sentence has, as far as I am aware, a single grammatical reading.
  25. It isn't *any* of
  26.       "The horse raced past the barn and collapsed."
  27.         [The collapse need not have been immediate.]
  28.       "The horse raced past the collapsed barn."
  29.         [The horse collapsed, not the barn.]
  30.       "The horse raced past the barn which collapsed."
  31.         [The horse collapsed, not the barn.]
  32. and does *not* involve a collapsed horse racing.
  33.  
  34. Basically, what's going on is THAT-deletion plus a +passive reading
  35. of "raced".  Read it as
  36.  
  37.     "The horse [that was] raced past the barn collapsed [then or later]."
  38.  
  39. The point of this particular example is that when we get to the word "barn"
  40. we are expecting the next thing to be a full stop, not another verb and the
  41. reading we _+think_ we are dealing with is -passive.  To get it right we have
  42. to go back, insert THAT, and change raced from -passive to +passive.
  43.  
  44.     While it's grammatically correct, it doesn't really make _sense_.
  45.  
  46. It makes perfect sense.  Someone raced the horse past the barn and the
  47. poor animal then collapsed.
  48.  
  49.       The horse hobbled past the barn collapsed.
  50.  
  51. I can't parse this one.  English is an anomalous SVO language; only a very
  52. few "fossilised" adjectives follow the noun they modify (as in
  53. governor(noun)-general(adjective), major-general, court martial,
  54. durance vile).  So "collapsed" cannot be an adjective here.  The sentence
  55. does not admit a +passive reading for "hobbled", because "to hobble an
  56. animal" does not admit a PATH complement, the point of hobbling is to
  57. *prevent* the animal following much of a path.
  58.  
  59.       The horse raced past the barn exhausted.
  60.     
  61. This one makes sense.  "The horse raced past the barn in an exhausted manner."
  62. It's a bit garden-pathish.
  63.  
  64.     This is probably one of the places where a comma would be in order:
  65.     
  66.       The horse raced past the barn, collapsed.
  67.  
  68. I can't parse this.  Has an AND been deleted from it?
  69. If it were
  70.     The horse raced past the barn, collapsed, and had a fit.
  71. then I could parse it, but the AND seems to be necessary.
  72.